Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
the input and output prompts need to be testing to understand the best experience for screen readers and assistive technology. since we still need to test this feature then everything needs to be configurable.
the input and output prompts are legacy features in the jupyter notebook. their text form is meant to mimic code that could be used to access the values.
In[20]
could be used as an expression to retrieve the 20th input from a list of imports; this is similar toOut[20]
which retrieves the 20th output from a dictionary if it exists. In/Out are short hand for Input/Output and would like need access to internationalization the similarity in the prompt's itemgetter forms allows readers to visually acknowledge that indeed an input and output correspond. ultimately, our notebook implementation should make this distinction semantically. these In/Out patterns are found in nearly all linear notebook implementations which is anything based on the notebook server model. observable notebooks that obey topological ordering don't have ordinal prompts rather they have nominal prompts.the goal of the templates we are working on is to set the baseline accessible reading state for notebooks. then progressive enhancements would transform the document to an interactive document. In/Out are interactive programming features that indicate the last state of the document when it was saved. In a reading mode, the programmatic nature of the prompts of the doesn't matter as much. The ordering is important in verifying that a notebook does not have hidden states from out of order computation. For readers the containing brackets or braces matter less. This may indicate that prompts brackets/braces could be redundant indicator for active/inactive notebooks.
also: what should the behavior of the brackets be for the prompts? brackets in prompts are announced, but should they be?